function
main()
{
var Encrypted;
var Decrypted;
Encrypted = EncryptStr("This
is a string.","MyPassword",5);
MessageBox(Encrypted,"Encrypted
String",0,0);
Decrypted = DecryptStr(Encrypted,"MyPassword",5);
MessageBox(Decrypted,"Decrypted
String",0,0);
}
|